home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-11-22 | 624 b | 47 lines | [CTPP/CTMP] |
- /pi 3.1415923 def
- /str1 ( ) def
-
- /spiral {
- gsave
- /rad exch def
- /ptsize exch def
- /str exch def
- /xrad rad ptsize 4 div add def
-
- 180 rotate
-
- str{
- /charcode exch def
- str1 0 charcode put
- str1 angshow
- .995 .995 scale
- } forall
- grestore
- } def
-
- /angshow {
- /char exch def
- /angle char stringang def
- gsave
- angle 2 div neg rotate
- rad 0 translate
- -90 rotate
- char stringwidth pop 2 div neg 0 moveto
- char show
- grestore
- angle neg rotate
- } def
-
- /stringang {
- stringwidth pop
- 2 xrad mul pi mul
- div 360 mul
- } def
-
- 300 400 translate
- Fontname1 findfont 20 scalefont setfont
- 1 1 scale
- topline
- 20 65 spiral
- showpage
-